home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / Bonus / VCLZip / kpdemosd.exe / Streams / Proj_32 / Stream.dpr < prev    next >
Encoding:
Text File  |  1997-12-16  |  318 b   |  18 lines

  1. program Stream;
  2.  
  3. uses
  4.   Forms,
  5.   StrmTest in '..\StrmTest.pas' {Form1},
  6.   FileDlg in '..\FileDlg.Pas' {FileDialog};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11. {$IFDEF WIN32}
  12.   Application.Initialize;
  13. {$ENDIF}
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.CreateForm(TFileDialog, FileDialog);
  16.   Application.Run;
  17. end.
  18.